62f9b5109464340e5fdcefc412faf90b4abce08f,nexu-core/src/main/java/lu/nowina/nexu/flow/SignatureFlow.java,SignatureFlow,process,#NexuAPI#SignatureRequest#,56

Before Change


					} else {
						if(api.getAppConfig().isEnablePopUps()) {
							getOperationFactory().getOperation(UIOperation.class, "/fxml/message.fxml",
								new Object[]{MessageFormat.format(
										ResourceBundle.getBundle("bundles/nexu").getString("signature.flow.no.key.selected"),
										api.getAppConfig().getApplicationName())
								}).perform();
						}
						return handleErrorOperationResult(selectPrivateKeyOperationResult);
					}

After Change


					} else {
						if(api.getAppConfig().isEnablePopUps()) {
							getOperationFactory().getOperation(UIOperation.class, "/fxml/message.fxml",
								new Object[]{"signature.flow.no.key.selected", api.getAppConfig().getApplicationName()}).perform();
						}
						return handleErrorOperationResult(selectPrivateKeyOperationResult);
					}